home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / README.usbstick < prev   
Text File  |  2006-03-30  |  733b  |  32 lines

  1. Mini-Pentoo HowTo usbstick.
  2.  
  3. To write this iso image to a usbstick is simple. Let's see:
  4.  
  5. Create a bootable, 256 Megs or more, Linux partition on your USB
  6. pen drive. ie /dev/sda1 with fdisk like the following sentence
  7. (Watch out, it will suppress all data...)
  8. fdisk /dev/sda
  9. d
  10. n
  11. 1
  12. Choose the size you want...
  13. a
  14. w
  15.  
  16. Format is Ext3 filesystem.
  17. mkfs.ext3 /dev/sda1
  18.  
  19. Put the file mbr.bin on the whole filesystem:
  20. cat extra/mbr.in > /dev/sda
  21. (This file resides in the iso/cd in etxra/)
  22.  
  23. Mount it on /mnt/usbstick:
  24. mount /dev/sda1 /mnt/usbstick
  25.  
  26. Copy the /isolinux, /modules and livecd.squashfs files on /mnt/usbstick.
  27.  
  28. Use extlinux to write the bootloader on the stick :
  29. extlinux /mnt/usbstick/isolinux
  30.  
  31. You're done. Hope you'll enjoy it.
  32.